@import url(https://fonts.googleapis.com/css?family=Lato);
.navbar ul {
  display: flex;
  align-items: start;
  list-style-type: none;
}
.navbar ul li {
  padding: 0 25px;
}
.navbar ul li a {
  position: relative;
  display: block;
  font-family: Lato, sans-serif;
  color: #ecf0f1;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
}
.navbar ul li a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FACF39;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.navbar ul li a:hover {
  color: #FACF39;
}
.navbar ul li a.active {
  color: #FACF39; /* Color para el enlace activo */
}
.navbar ul li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer {
  background-color: #000;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  font-size: 16px;
  color: #737373;
}

.site-footer a:hover {
  color: #FACF39;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #737373;
}

.footer-links a:active, .footer-links a:focus, .footer-links a:hover {
  color: #FACF39;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}

.copyright-text {
  font-size: 16px;
  color: white;
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text, .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  transition: all 0.2s linear;
}

.social-icons a:active, .social-icons a:focus, .social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.facebook:hover {
  background-color: #3b5998;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89;
}

@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
.whatsapp {
  padding: 0px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}

.whatsapp:hover {
  transform: scale(1.2);
}

.about-img1 {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
}

.about-img2 {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  margin-top: 370px;
  margin-left: -150px;
}

#map {
  height: 500px;
  width: 100%;
}

.mapclass {
  width: 85%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 100px;
}

.bg-container {
  position: relative;
/* background-image: url("/images/leña1.jpg"); */
  /* background-size: cover; */
  background-position: top;
  background-attachment: fixed;
  min-width: 100%;
  min-height: 100vh;
  height: 100vh;
}

.bg-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Ajusta la opacidad según tus necesidades */
}

#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.navbar li {
  margin: 0 20px;
  text-align: center;
}

.navbar li a {
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.navbar.scrolled {
  background-color: black;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
  margin-right: 20px;
}

.titulo-pagina {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 57px;
}

:root {
  --c-blue-900: #081030;
  --c-blue-800: #111b40;
  --c-blue-700: #152148;
  --c-blue-500: #1d7bdb;
  --c-blue-300: #293359;
  --c-blue-200: #4e5985;
  --c-blue-100: #dfe8ff;
  --c-green-400: #4ade80;
}

.container-precio {
  line-height: 1.5;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-blue-900);
  color: var(--c-blue-100);
  padding: 5vh 12px 15vh 12px;
}

.container-full {
  font-family: "Outfit", sans-serif;
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-blue-900);
  color: var(--c-blue-100);
}

.tarifas {
  padding-top: 100px;
  background-color: var(--c-blue-900);
  font-size: 20px;
  justify-content: center;
  text-align: center;
  width: 100%;
  align-items: center;
}


.contacto-container {
  position: relative;
  background-image: url("/images/foto-leña-16.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 120vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto-container::before {
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}




.contact-box {
  width: clamp(100px, 90%, 1000px);
  margin: 80px 50px;
  animation: show-in 3s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
}
.contact-links, .contact-form-wrapper {
  width: 50%;
  padding: 8% 5% 10% 5%;
}


.contact-links {
  background-color: #1f2e43;
  background:
    radial-gradient(
      circle at 75% 85%, #426691 0 12%, transparent 12.2%
    ), 
    radial-gradient(
      circle at 80% 32%, #426691 0 10%, transparent 10.2%
    ), 
    radial-gradient(
      circle at 20% max(78%, 350px), #263a53 0 7%, transparent 7.2%
    ), 
    radial-gradient(
      circle at 0% 0%, #263a53 0 40%, transparent 40.2%
    ), 
    #1f2e43;
  border-radius: 10px 0 0 10px;
}

.contact-form-wrapper {
  background-color: #ffffff8f;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 800px) {
  .contact-links, .contact-form-wrapper {
    width: 100%;
  }
  
  .contact-links {
    border-radius: 10px 10px 0 0;
  }
  
  .contact-form-wrapper {
    border-radius: 0 0 10px 10px;
  }
}

@media only screen and (max-width: 400px) {
  .contact-box {
    width: 95%;
    margin: 8% 5%;
  }
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}

.link {
  margin: 10px;
  cursor: pointer;
}



.form-item {
  position: relative;
  margin-top:35px;
}

label, input, textarea {
  font-family: 'Poppins', sans-serif;
}

label {
  /* position: absolute; */
  top: 10px;
  left: 2%;
  color: #000;
  font-size: clamp(14px, 1.5vw, 18px);
  pointer-events: none;
  user-select: none;
  font-weight: 600;
}



input, textarea {
  width: 100%;
  outline: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 12px;
  font-size: clamp(15px, 1.5vw, 18px);
}

input:focus+label, 
input:valid+label, 
textarea:focus+label, 
textarea:valid+label {
  font-size: clamp(13px, 1.3vw, 16px);
  color: #777;
  top: -30px;
  transition: all .225s ease;
}


.btn-info{
  background-color: #FACF39;
  color: #000;
  border-radius: 25px;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 900;
  border-color: #000;
}

.btn-info:hover{
  background-color: #000;
  color: #FACF39;
  border-color:#FACF39;
}

.span-contacto{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.price h1{
  color:#FACF39;
}
